home *** CD-ROM | disk | FTP | other *** search
/ Chip 2002 July / 07_02.iso / software / xq-xsetup / files / setup.exe / {app} / plugins / XQ Win2K GPO 1.xpl < prev    next >
Text File  |  2002-01-04  |  2KB  |  46 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 6.0"
  2. "TYPE"="6"
  3. "COUNT"="1"
  4. "UIPATH 1"="Network\Security\ActiveDirectory"
  5. "UIPATH 2"="System\Security\Common"
  6. "UIPATH 3"="Startup/Shutdown\Startup\Windows NT/2K/XP\60) Windows Launch"
  7. "NAME"="Group Policy Objects (GPO) Active"
  8. "VERSION"="1.20"
  9. "OSVERSION"="000101"
  10. "LANGUAGE"="VBScript"
  11. "TEXT 1"="Enable Group Policy Objects (GPOs) on this computer"
  12. "DESCRIPTION 1"="An administrator in a Windows 2000 network normally sets Group Policy Objects (GPOs) to control the computers in the network."
  13. "DESCRIPTION 2"="These settings include which items are displayed to the user, which changes the user is allowed to make and other settings."
  14. "DESCRIPTION 3"="If this setting is disabled, the computers will only receive policy from the Local Group Policy Object; that is, it will not receive policy from the domain. This capability is useful for stand-alone computers, for example, employees' home computers."
  15. "AUTHOR"="Xteq Systems"
  16. "CONTACTURL"="http://www.xteq.com"
  17. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  18. "COMMENT 1"=" "
  19.  
  20.  
  21. sP="HKLM\Software\Policies\Microsoft\Windows\System\"
  22. sV1="DisableGPO" 'RD
  23. Sub Plugin_Initialize 
  24.     i=RegReadValue(sP & sV1)
  25.     if i<>1 then SetUIElement 1,true
  26. End Sub
  27.  
  28. Sub Plugin_CheckData(ElementIndex)
  29. End Sub
  30.  
  31. Sub Plugin_Apply(ElementIndex,ElementSubIndex)
  32.  b=GetUIElement(1)
  33.  if b=true then
  34.     Call RegWriteValue(sP & sV1,0,2) 
  35.  else
  36.     Call RegWriteValue(sP & sV1,1,2) 
  37.  end if
  38. End Sub
  39.  
  40.  
  41. Sub Plugin_Terminate 
  42. End Sub
  43.  
  44.  
  45.  
  46.